home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-04-19 | 1.6 KB | 73 lines | [TEXT/MPS ] |
- //# Copyright: © 1993-94 by Apple Computer, Inc., all rights reserved.
- #ifndef _MENUBARB_
- #define _MENUBARB_
-
- #ifndef _REFCTOBJ_
- #include "RefCtObj.idl"
- #endif
-
- //=====================================================================================
- // Classes defined in this interface
- //=====================================================================================
-
- interface ODBaseMenuBar;
-
- //=====================================================================================
- // Classes used by this interface
- //=====================================================================================
-
- interface ODMenuBar;
- interface ODSession;
- interface ODPart;
-
- //=====================================================================================
- // Class ODBaseMenuBar
- //=====================================================================================
-
- interface ODBaseMenuBar : ODRefCntObject
- {
- void Display();
-
- ODMenuBar Copy();
-
- void AddMenuLast(in ODMenuID menuID,
- in ODPlatformMenu menu,
- in ODPart part);
-
- void AddMenuBefore(in ODMenuID menuID,
- in ODPlatformMenu menu,
- in ODPart part,
- in ODMenuID beforeID);
-
- void RemoveMenu(in ODMenuID menu);
-
- ODPlatformMenu GetMenu(in ODMenuID menu);
-
-
- #ifdef __SOMIDL__
-
- implementation
- {
- override:
- somInit,
- somUninit,
- Release;
-
- releaseorder:
- Display,
- Copy,
- AddMenuLast,
- AddMenuBefore,
- RemoveMenu,
- GetMenu,
- reserved1;
-
- majorversion = 1; minorversion = 0;
-
- };
- #endif //# __SOMIDL__
-
- };
-
- #endif //# _MENUBARB_
-